home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 039a / mawk10.zip / INIT.H < prev    next >
C/C++ Source or Header  |  1991-10-05  |  1KB  |  54 lines

  1.  
  2. /********************************************
  3. init.h
  4. copyright 1991, Michael D. Brennan
  5.  
  6. This is a source file for mawk, an implementation of
  7. the AWK programming language.
  8.  
  9. Mawk is distributed without warranty under the terms of
  10. the GNU General Public License, version 2, 1991.
  11. ********************************************/
  12.  
  13. /* $Log:    init.h,v $
  14.  * Revision 3.3.1.1  91/09/14  17:23:31  brennan
  15.  * VERSION 1.0
  16.  * 
  17.  * Revision 3.3  91/08/13  06:51:36  brennan
  18.  * VERSION .9994
  19.  * 
  20.  * Revision 3.2  91/06/28  04:16:51  brennan
  21.  * VERSION 0.999
  22.  * 
  23.  * Revision 3.1  91/06/07  10:27:41  brennan
  24.  * VERSION 0.995
  25.  * 
  26.  * Revision 2.1  91/04/08  08:23:17  brennan
  27.  * VERSION 0.97
  28.  * 
  29. */
  30.  
  31. /* init.h  */
  32.  
  33.  
  34. #ifndef  INIT_H
  35. #define  INIT_H
  36.  
  37.  
  38. void  PROTO( initialize, (int, char **) ) ;
  39. void  PROTO( code_init, (void) ) ;
  40. void  PROTO( code_cleanup, (void) ) ;
  41. void  PROTO( compile_cleanup, (void) ) ;
  42. void PROTO(scan_init, (int, char *) ) ;
  43. void PROTO(scan_cleanup, (void) ) ;
  44. void PROTO(bi_vars_init, (void) ) ;
  45. void PROTO(bi_funct_init, (void) ) ;
  46. void PROTO(print_init, (void) ) ;
  47. void PROTO(kw_init, (void) ) ;
  48. void PROTO(jmp_stacks_init, (void) ) ;
  49. void PROTO(jmp_stacks_cleanup, (void) ) ;
  50. void  PROTO( field_init, (void) ) ;
  51. void  PROTO( fpe_init, (void) ) ;
  52.  
  53. #endif   /* INIT_H  */
  54.